return;
size_constraints = g_ptr_array_new ();
+ gtk_constraint_solver_freeze (solver);
/* We measure each child in the layout and impose restrictions on the
* minimum and natural size, so we can solve the size of the overall
g_ptr_array_add (size_constraints, constraint);
}
+ gtk_constraint_solver_thaw (solver);
+
switch (orientation)
{
case GTK_ORIENTATION_HORIZONTAL:
gtk_constraint_variable_get_value (layout_height)));
size_constraints = g_ptr_array_new ();
+ gtk_constraint_solver_freeze (solver);
/* We reset the constraints on the size of each child, so we are sure the
* layout is up to date
g_ptr_array_add (size_constraints, constraint);
}
+ gtk_constraint_solver_thaw (solver);
+
for (child = _gtk_widget_get_first_child (widget);
child != NULL;
child = _gtk_widget_get_next_sibling (child))